home *** CD-ROM | disk | FTP | other *** search
/ User's Choice Windows CD / User's Choice Windows CD (CMS Software)(1993).iso / windows3 / mlk103x.zip / ATLWIN.MSL next >
Text File  |  1991-12-30  |  493b  |  18 lines

  1. ' ***************************************************
  2. ' *        Atlanta Windows RBBS Logon Script        *
  3. ' ***************************************************
  4. ' Note: ^M means Enter key
  5. first$ = "firstname^M"
  6. last$  = "lastname^M"
  7. pw$    = "password^M"
  8. MPRINT "Atlanta Windows Logon Script"
  9. WAITFOR "What is your FIRST name? "
  10. RPRINT first$
  11. WAITFOR "What is your LAST name? "
  12. RPRINT last$
  13. WAITFOR "Enter Password (dots echo)? "
  14. RPRINT pw$
  15. MPRINT "Sign-on Complete..."
  16. END
  17.  
  18.